| Conditions | 1 |
| Total Lines | 11 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import { Column, Entity, ManyToOne, PrimaryGeneratedColumn } from 'typeorm'; |
||
| 53 | |||
| 54 | public update( |
||
| 55 | date: Date, |
||
| 56 | photographer: User, |
||
| 57 | school: School, |
||
| 58 | summary?: string |
||
| 59 | ): void { |
||
| 60 | this.date = date; |
||
| 61 | this.photographer = photographer; |
||
| 62 | this.school = school; |
||
| 63 | this.summary = summary; |
||
| 64 | } |
||
| 66 |